home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amigappc / libsrc / math / difftime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  87 b   |  7 lines

  1. #include <time.h>
  2.  
  3. #undef difftime
  4.  
  5. double difftime(time_t a,time_t b)
  6. { return a-b; }
  7.